9 lines
213 B
TypeScript
9 lines
213 B
TypeScript
export interface MetaConfig {
|
|
secret: string;
|
|
verifyToken: string;
|
|
}
|
|
export declare const MetaConfigSerializer: {
|
|
_fromJsonObject(object: any): MetaConfig;
|
|
_toJsonObject(self: MetaConfig): any;
|
|
};
|