Website Structure
This commit is contained in:
parent
62812f2090
commit
71f0676a62
22365 changed files with 4265753 additions and 791 deletions
17
Frontend-Learner/node_modules/unctx/dist/plugin.d.cts
generated
vendored
Normal file
17
Frontend-Learner/node_modules/unctx/dist/plugin.d.cts
generated
vendored
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
import * as unplugin from 'unplugin';
|
||||
import { HookFilter } from 'unplugin';
|
||||
import { TransformerOptions } from './transform.cjs';
|
||||
import 'magic-string';
|
||||
|
||||
interface UnctxPluginOptions extends TransformerOptions {
|
||||
/** Plugin Hook Filter for the transform hook
|
||||
* @see https://unplugin.unjs.io/guide/#filters
|
||||
*/
|
||||
transformFilter?: HookFilter;
|
||||
/** Function to determine whether a file should be transformed. If possible, use `transformFilter` instead for better performance. */
|
||||
transformInclude?: (id: string) => boolean;
|
||||
}
|
||||
declare const unctxPlugin: unplugin.UnpluginInstance<UnctxPluginOptions, boolean>;
|
||||
|
||||
export { unctxPlugin };
|
||||
export type { UnctxPluginOptions };
|
||||
Loading…
Add table
Add a link
Reference in a new issue