(message: string, data: Record<string, unknown>)
| 137 | } |
| 138 | |
| 139 | function warn(message: string, data: Record<string, unknown>) { |
| 140 | console.warn(`[tui.plugin] ${message}`, data) |
| 141 | } |
| 142 | |
| 143 | function createScopedKeymap(keymap: TuiPluginApi["keymap"], scope: PluginScope): TuiPluginApi["keymap"] { |
| 144 | const cache = new Map<PropertyKey, unknown>() |
no outgoing calls
no test coverage detected