14 lines
351 B
TypeScript
14 lines
351 B
TypeScript
|
/* generated using openapi-typescript-codegen -- do no edit */
|
||
|
/* istanbul ignore file */
|
||
|
/* tslint:disable */
|
||
|
/* eslint-disable */
|
||
|
import type { FileImport } from './FileImport';
|
||
|
export type AdminBasket = {
|
||
|
name: string;
|
||
|
files: Array<FileImport>;
|
||
|
columns: Array<string>;
|
||
|
uploadFields: Array<string>;
|
||
|
projects?: Array<string>;
|
||
|
};
|
||
|
|