8 lines
205 B
TypeScript
8 lines
205 B
TypeScript
export interface SinkSecretOut {
|
|
key?: string | null;
|
|
}
|
|
export declare const SinkSecretOutSerializer: {
|
|
_fromJsonObject(object: any): SinkSecretOut;
|
|
_toJsonObject(self: SinkSecretOut): any;
|
|
};
|