@sethub/sdk
Version:
<div align="center"> <h1> SetHub SDK </h1>
19 lines (18 loc) • 606 B
TypeScript
import type { SetHubProtocols } from '../../../common/types/common';
import type { HttpClientProtocols } from '../../../http/protocols/client.protocols';
type DeleteProjectFailure = {
code: 'internal';
message: string;
};
export declare namespace DeleteProject {
type Input = {
slug: string;
};
type Options = Pick<HttpClientProtocols.PostOptions, 'abortSignal'>;
type Success = void;
type ErrorCodes = 'internal';
type Failure = DeleteProjectFailure;
type Output = Success | Failure;
type Response = SetHubProtocols.Response<Success, Failure>;
}
export {};