8 lines
213 B
TypeScript
8 lines
213 B
TypeScript
export interface EndpointSecretOut {
|
|
key: string;
|
|
}
|
|
export declare const EndpointSecretOutSerializer: {
|
|
_fromJsonObject(object: any): EndpointSecretOut;
|
|
_toJsonObject(self: EndpointSecretOut): any;
|
|
};
|