UNPKG

ic-auth

Version:

A simple to use, modular package for integrating Internet Computer authentication providers into your app.

9 lines (8 loc) 293 B
export 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']), }); }; export const init = ({ IDL }) => { return []; };