8 lines
208 B
TypeScript
8 lines
208 B
TypeScript
export interface SegmentConfig {
|
|
secret?: string | null;
|
|
}
|
|
export declare const SegmentConfigSerializer: {
|
|
_fromJsonObject(object: any): SegmentConfig;
|
|
_toJsonObject(self: SegmentConfig): any;
|
|
};
|