Add .gitignore to exclude all node packages and lock files

This commit is contained in:
Adolfo Reyna
2026-02-23 21:56:04 -05:00
parent faae96c9ed
commit dcc5c6c044
9747 changed files with 1555105 additions and 2 deletions
@@ -0,0 +1,29 @@
declare const problematicCharacters: {
'%3A': string;
'%2F': string;
'%3F': string;
'%23': string;
'%5B': string;
'%5D': string;
'%40': string;
'%21': string;
'%24': string;
'%26': string;
'%27': string;
'%28': string;
'%29': string;
'%2A': string;
'%2B': string;
'%2C': string;
'%3B': string;
};
type HexCode = keyof typeof problematicCharacters;
export type HexInfo = {
containsHex: false;
} | {
containsHex: true;
hexCode: HexCode;
};
export declare const includesHexOfUnsafeChar: (path: string) => HexInfo;
export declare const staticFile: (path: string) => string;
export {};