ic-auth
Version:
A simple to use, modular package for integrating Internet Computer authentication providers into your app.
14 lines (13 loc) • 467 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.init = exports.idlFactory = void 0;
const idlFactory = ({ IDL }) => {
return IDL.Service({
'addPermission': IDL.Func([IDL.Text], [IDL.Text], []),
'hello': IDL.Func([], [IDL.Text], ['query']),
'permissionTest': IDL.Func([], [IDL.Text], ['query']),
});
};
exports.idlFactory = idlFactory;
const init = ({ IDL }) => { return []; };
exports.init = init;