2024-02-17 12:35:03 +05:30
|
|
|
/* generated using openapi-typescript-codegen -- do no edit */
|
|
|
|
/* istanbul ignore file */
|
|
|
|
/* tslint:disable */
|
|
|
|
/* eslint-disable */
|
|
|
|
import type { FileImport } from './FileImport';
|
2024-03-25 17:21:39 +05:30
|
|
|
import type { Project } from './Project';
|
2024-02-17 12:35:03 +05:30
|
|
|
export type AdminBasket = {
|
|
|
|
name: string;
|
|
|
|
files: Array<FileImport>;
|
|
|
|
columns: Array<string>;
|
|
|
|
uploadFields: Array<string>;
|
2024-03-25 17:21:39 +05:30
|
|
|
projects?: Array<Project>;
|
2024-02-17 12:35:03 +05:30
|
|
|
};
|
|
|
|
|