thisiswhatitis
Version:
thisiswhatitis
25 lines (21 loc) • 517 B
TypeScript
interface thisiswhatitis {
set?: (
onsucess: (response: string) => void,
onfail: (response: string) => void,
key: string,
value: string
) => void;
get?: (
onsucess: (response: string) => void,
onfail: (response: string) => void,
key: string
) => void;
delete?: (
onsucess: (response: string) => void,
onfail: (response: string) => void,
key: string
) => void;
}
interface CordovaPlugins {
thisiswhatitis: thisiswhatitis
}