spiceware-sdk
Version:
21 lines (20 loc) • 410 B
TypeScript
interface FieldsType {
[name: string]: string;
}
export interface DecryptItemType {
ip: string;
fields: FieldsType;
}
export interface DecryptListType {
ip: string;
fields: FieldsType[];
}
export interface EncryptItemType extends DecryptItemType {
uri: string;
}
export interface ResponseType {
result: "success" | "fail";
message?: string;
fields: FieldsType;
}
export {};