{"version":3,"file":"get-interface-context.mjs","sourceRoot":"","sources":["../../../src/types/methods/get-interface-context.ts"],"names":[],"mappings":"","sourcesContent":["import type { InterfaceContext } from '../interface';\n\n/**\n * An object containing the parameters for the `snap_getInterfaceContext`\n * method.\n *\n * @property id - The interface ID.\n */\nexport type GetInterfaceContextParams = {\n  id: string;\n};\n\n/**\n * The context for the given interface. May be `null` if no context was provided\n * when the interface was created.\n */\nexport type GetInterfaceContextResult = InterfaceContext | null;\n"]}