@opentiny/fluent-editor
Version:
A rich text editor based on Quill 2.0, which extends rich modules and formats on the basis of Quill. It's powerful and out-of-the-box.
7 lines (6 loc) • 406 B
TypeScript
export declare function isObject(value: unknown): value is Record<string, any>;
export declare const isUndefined: (val: unknown) => val is undefined;
export declare const isFunction: (val: unknown) => val is Function;
export declare const isString: (val: unknown) => val is string;
export declare const isBoolean: (val: unknown) => val is boolean;
export declare const isArray: (arg: any) => arg is any[];