UNPKG

storyblok-ts-client

Version:

Typescript library for working with Storyblok management API.

12 lines 312 B
import { IPendingComponent } from './IPendingComponent'; /** * Interface of a Storyblok component. * * @export * @interface IComponent */ export interface IComponent extends IPendingComponent { readonly created_at?: string; readonly id?: number; } //# sourceMappingURL=IComponent.d.ts.map