/** * This module provides utility functions for working with text blocks * in TypeScript. * * @since 0.0.6 */ import type { Op } from '@geoprotocol/grc-20'; type TextBlockParams = { fromId: string; text: string; position?: string; }; /** * Returns the ops to create an entity representing a Text Block. * * @example * ```ts * const ops = TextBlock.make({ * fromId: 'from-id', * text: 'text', * // optional * position: 'position-string', * }); * ``` * * @param param args {@link TextBlockParams} * @returns ops – The ops for the Text Block entity: {@link Op}[] */ export declare function make({ fromId, text, position }: TextBlockParams): Op[]; export {}; //# sourceMappingURL=text.d.ts.map