UNPKG

@neurosity/notion

Version:
9 lines (8 loc) 294 B
import { Notion } from "../Notion"; import { NotionOptions } from "../types/options"; import { Skill } from "../types/skill"; export declare type NotionOnDevice = Omit<Notion, "skill">; export interface OnDeviceOptions extends NotionOptions { onDeviceSocketUrl: string; skill: Skill; }