/** * Metadata exposed by the ESLint plugin module. */ export type PluginMeta = Readonly<{ name: "eslint-plugin-etc-misc"; namespace: PluginNamespace; version: string; }>; /** * Namespace used to register the plugin in flat configurations. */ export type PluginNamespace = "etc-misc"; /** * Immutable metadata describing this ESLint plugin package. */ export declare const pluginMeta: PluginMeta; //# sourceMappingURL=plugin-meta.d.ts.map