UNPKG

@stencila/types

Version:

JavaScript classes and TypeScript types for the Stencila Schema

42 lines (34 loc) 958 B
// Generated file; do not edit. See https://github.com/stencila/stencila/tree/main/rust/schema-gen import { Block } from "./Block.js"; import { CreativeWork } from "./CreativeWork.js"; /** * Encapsulates one or more images, videos, tables, etc, and provides captions and labels for them. */ export class Figure extends CreativeWork { // @ts-expect-error 'not assignable to the same property in base type' type: "Figure"; /** * The content of the figure. */ content: Block[]; /** * A short label for the figure. */ label?: string; /** * A caption for the figure. */ caption?: Block[]; constructor(content: Block[], options?: Partial<Figure>) { super(); this.type = "Figure"; if (options) Object.assign(this, options); this.content = content; } } /** * Create a new `Figure` */ export function figure(content: Block[], options?: Partial<Figure>): Figure { return new Figure(content, options); }