zcatalyst-integ-cliq
Version:
Node.js SDK for integrating Zoho Catalyst with Zoho Cliq
17 lines (16 loc) • 452 B
TypeScript
export default class OembedFields {
styles?: OembedFieldStyle;
data?: Array<OembedFieldData>;
newOembedFieldStyle(short: boolean): OembedFieldStyle;
newOembedFieldData(label: string, value: string): OembedFieldData;
}
declare class OembedFieldStyle {
short: boolean;
constructor(short: boolean);
}
declare class OembedFieldData {
label: string;
value: string;
constructor(label: string, value: string);
}
export {};