import { ICollection, TSchemaUnit } from '@nishans/types'; import { INotionCoreOptions } from '../'; import NotionData from './Data'; /** * A class to represent a column schema of a collection * @noInheritDoc */ export default class SchemaUnit extends NotionData> { schema_id: string; constructor(arg: INotionCoreOptions & { schema_id: string; }); update(arg: T): Promise; delete(): Promise>; duplicate(): Promise>; getCachedChildData(): TSchemaUnit; }