16 lines
376 B
TypeScript
16 lines
376 B
TypeScript
import { JoseHeaderOptions } from "./JoseHeader";
|
|
export type SignedHttpRequest = {
|
|
at?: string;
|
|
cnf?: object;
|
|
m?: string;
|
|
u?: string;
|
|
p?: string;
|
|
q?: [Array<string>, string];
|
|
ts?: number;
|
|
nonce?: string;
|
|
client_claims?: string;
|
|
};
|
|
export type ShrOptions = {
|
|
header: JoseHeaderOptions;
|
|
};
|
|
//# sourceMappingURL=SignedHttpRequest.d.ts.map
|