8 lines
192 B
TypeScript
8 lines
192 B
TypeScript
export interface SlackConfig {
|
|
secret: string;
|
|
}
|
|
export declare const SlackConfigSerializer: {
|
|
_fromJsonObject(object: any): SlackConfig;
|
|
_toJsonObject(self: SlackConfig): any;
|
|
};
|