8 lines
199 B
TypeScript
8 lines
199 B
TypeScript
export interface TelnyxConfig {
|
|
publicKey: string;
|
|
}
|
|
export declare const TelnyxConfigSerializer: {
|
|
_fromJsonObject(object: any): TelnyxConfig;
|
|
_toJsonObject(self: TelnyxConfig): any;
|
|
};
|