Fix/update admin (WIP)

This commit is contained in:
phil 2024-03-25 17:21:39 +05:30
parent 4994d8314a
commit 339d8f2210
11 changed files with 49 additions and 44 deletions

View file

@ -3,11 +3,12 @@
/* tslint:disable */
/* eslint-disable */
import type { FileImport } from './FileImport';
import type { Project } from './Project';
export type AdminBasket = {
name: string;
files: Array<FileImport>;
columns: Array<string>;
uploadFields: Array<string>;
projects?: Array<string>;
projects?: Array<Project>;
};