UNPKG

@iyio/convo-lang

Version:

A conversational language.

7 lines (6 loc) 291 B
export interface RawConvoValue { rawConvoValue: string; } export declare const isRawConvoValue: (value: any) => value is RawConvoValue; export declare const getRawConvoValueAsString: (value: any, escape?: boolean) => string; export declare const rawConvo: (value: any) => RawConvoValue;