UNPKG

ic-auth

Version:

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

9 lines (7 loc) 269 B
import type { Principal } from '@dfinity/principal'; import type { ActorMethod } from '@dfinity/agent'; export interface _SERVICE { 'addPermission' : ActorMethod<[string], string>, 'hello' : ActorMethod<[], string>, 'permissionTest' : ActorMethod<[], string>, }