Hierarchy

  • AssetFileProp

Properties

Properties

fields: {
    description: {
        [key: string]: string;
    };
    file: {
        [key: string]: {
            contentType: string;
            file: string | ArrayBuffer | Stream;
            fileName: string;
        };
    };
    title: {
        [key: string]: string;
    };
}

Type declaration

  • description: {
        [key: string]: string;
    }
    • [key: string]: string
  • file: {
        [key: string]: {
            contentType: string;
            file: string | ArrayBuffer | Stream;
            fileName: string;
        };
    }
    • [key: string]: {
          contentType: string;
          file: string | ArrayBuffer | Stream;
          fileName: string;
      }
      • contentType: string
      • file: string | ArrayBuffer | Stream
      • fileName: string
  • title: {
        [key: string]: string;
    }
    • [key: string]: string