14 lines
394 B
TypeScript
14 lines
394 B
TypeScript
/* generated using openapi-typescript-codegen -- do no edit */
|
|
/* istanbul ignore file */
|
|
/* 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<Project>;
|
|
};
|
|
|