/** * IPart */ interface IPart { readonly done: boolean; readonly priority: number; readonly name: string; readonly type: string; render(data: Record): Promise; serialize(): string; } /** * Default export */ export default IPart;