- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
10 lines
314 B
TypeScript
Executable File
10 lines
314 B
TypeScript
Executable File
import type * as Types from "./types.js";
|
|
export { URLPattern } from "./types.js";
|
|
|
|
declare global {
|
|
class URLPattern extends Types.URLPattern {}
|
|
type URLPatternInit = Types.URLPatternInit;
|
|
type URLPatternResult = Types.URLPatternResult;
|
|
type URLPatternComponentResult = Types.URLPatternComponentResult;
|
|
}
|