/** * Retool API * The Retool API is in beta. Go to Settings > API to get started. Once you generate an API token, use bearer token authentication to make requests. * * The version of the OpenAPI document: 2.4.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Custom Component Library Revision * @export * @interface CustomComponentLibraryRevisionFile */ export interface CustomComponentLibraryRevisionFile { /** * * @type {string} * @memberof CustomComponentLibraryRevisionFile */ filepath: string; /** * * @type {string} * @memberof CustomComponentLibraryRevisionFile */ fileContents: string; /** * * @type {Date} * @memberof CustomComponentLibraryRevisionFile */ createdAt: Date; /** * * @type {Date} * @memberof CustomComponentLibraryRevisionFile */ updatedAt: Date; } /** * Check if a given object implements the CustomComponentLibraryRevisionFile interface. */ export declare function instanceOfCustomComponentLibraryRevisionFile(value: object): boolean; export declare function CustomComponentLibraryRevisionFileFromJSON(json: any): CustomComponentLibraryRevisionFile; export declare function CustomComponentLibraryRevisionFileFromJSONTyped(json: any, ignoreDiscriminator: boolean): CustomComponentLibraryRevisionFile; export declare function CustomComponentLibraryRevisionFileToJSON(value?: CustomComponentLibraryRevisionFile | null): any;