/** * 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 * @export * @interface CustomComponentLibrary */ export interface CustomComponentLibrary { /** * * @type {string} * @memberof CustomComponentLibrary */ id: string; /** * How the library will be referred to in Toolscript, and other code based usages. * @type {string} * @memberof CustomComponentLibrary */ name: string; /** * * @type {string} * @memberof CustomComponentLibrary */ description: string | null; /** * How the library will be referred to in the Retool UI. Should be human readable. * @type {string} * @memberof CustomComponentLibrary */ label: string; /** * * @type {Date} * @memberof CustomComponentLibrary */ createdAt: Date; /** * * @type {Date} * @memberof CustomComponentLibrary */ updatedAt: Date; } /** * Check if a given object implements the CustomComponentLibrary interface. */ export declare function instanceOfCustomComponentLibrary(value: object): boolean; export declare function CustomComponentLibraryFromJSON(json: any): CustomComponentLibrary; export declare function CustomComponentLibraryFromJSONTyped(json: any, ignoreDiscriminator: boolean): CustomComponentLibrary; export declare function CustomComponentLibraryToJSON(value?: CustomComponentLibrary | null): any;