UNPKG

thisiswhatitis

Version:
25 lines (21 loc) 517 B
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 }