@affinidi/tools-openapi
Version:
SDK core monorepo for affinity DID solution
12 lines (11 loc) • 323 B
TypeScript
export declare type DidAuthOperation = {
requestBody: {
readonly audienceDid: string;
};
responseBody: string;
pathParams: undefined;
queryParams: undefined;
};
export declare type PossibleDidAuthOperationIdsOf<T> = {
[K in keyof T]-?: T[K] extends DidAuthOperation ? K : never;
}[keyof T];