@antv/t8
Version:
T8 is a text visualization solution for unstructured data within the AntV technology stack, and it is a declarative JSON Schema syntax that can be used to describe the content of data interpretation reports.
14 lines • 771 B
TypeScript
import { BlockDescriptor } from './types';
/**
* Creates a factory function for custom block descriptors.
*
* This function takes a descriptor object and returns a new descriptor with the
* `isBlock` property set to `true`. The descriptor is expected to be of type
* `BlockDescriptor<CustomBlockSpec>`, where `CustomBlockSpec` is the type of
* the block specification.
*
* @param descriptor - The descriptor object to be converted into a block descriptor.
* @returns A new block descriptor with the `isBlock` property set to `true`.
*/
export declare const createCustomBlockFactory: <CustomBlockSpec = any>(descriptor: Omit<BlockDescriptor<CustomBlockSpec>, "isBlock">) => BlockDescriptor<CustomBlockSpec>;
//# sourceMappingURL=createCustomBlockFactory.d.ts.map