@dapplets/dapplet-extension
Version:
The Bridge to the Augmented Web.
16 lines (15 loc) • 384 B
TypeScript
export type DappletActionProps = {
moduleName: string;
onClick?: () => void;
title?: string;
icon?: string;
pinId?: string;
hidden?: boolean;
disabled?: boolean;
pinned?: boolean;
onPinned?: () => void;
};
export declare const useDappletActions: () => {
dappletActions: any[];
};
export declare const setDappletActions: (actions: any) => void;