- Add npm scripts for CSS/JS compilation (build:css, build:js, build) - Create PowerShell build automation script - Document development workflow in README - Add troubleshooting guide for build issues - Specify proper file structure and compilation process Supports Tailwind CSS v3.4.0 and esbuild bundling with source maps.
21 lines
763 B
TypeScript
21 lines
763 B
TypeScript
type AnymatchFn = (testString: string) => boolean;
|
|
type AnymatchPattern = string|RegExp|AnymatchFn;
|
|
type AnymatchMatcher = AnymatchPattern|AnymatchPattern[]
|
|
type AnymatchTester = {
|
|
(testString: string|any[], returnIndex: true): number;
|
|
(testString: string|any[]): boolean;
|
|
}
|
|
|
|
type PicomatchOptions = {dot: boolean};
|
|
|
|
declare const anymatch: {
|
|
(matchers: AnymatchMatcher): AnymatchTester;
|
|
(matchers: AnymatchMatcher, testString: null, returnIndex: true | PicomatchOptions): AnymatchTester;
|
|
(matchers: AnymatchMatcher, testString: string|any[], returnIndex: true | PicomatchOptions): number;
|
|
(matchers: AnymatchMatcher, testString: string|any[]): boolean;
|
|
}
|
|
|
|
export {AnymatchMatcher as Matcher}
|
|
export {AnymatchTester as Tester}
|
|
export default anymatch
|