7 lines
113 B
TypeScript
7 lines
113 B
TypeScript
import { INonce } from "./Nonce.Model";
|
|
|
|
export interface IPayload {
|
|
nonce: INonce;
|
|
signature: string;
|
|
}
|