14 lines
255 B
TypeScript
14 lines
255 B
TypeScript
// Code generated by apigen. DO NOT EDIT.
|
|
|
|
export interface CatalogItem {
|
|
"name"?: string;
|
|
"properties"?: { [key: string]: unknown };
|
|
"slug"?: string;
|
|
"tags"?: string[];
|
|
}
|
|
|
|
export interface ListCatalogItemsResponse {
|
|
"items"?: CatalogItem[];
|
|
}
|
|
|