intentful
Version:
Create Custom Skills with less headache
15 lines (14 loc) • 468 B
TypeScript
export declare abstract class ModelProvider<T> {
abstract model(): T;
abstract toJSON(): T;
}
export type Calculable<A> = A | Expression;
export declare class Expression {
private readonly expression;
private constructor();
static val(expression: string): Expression;
toJSON(): string;
}
export declare const e: (val: string) => Expression;
export type LocaleString = 'en-US' | 'en-CA' | 'en-GB';
export type SpeechType = 'PlainText' | 'SSML';