Files
fitness_walk_nwnu/node_modules/licia/rc4.d.ts
T
2026-09-08 20:28:54 +08:00

7 lines
133 B
TypeScript

declare const rc4: {
encrypt(key: string, str: string): string;
decrypt(key: string, str: string): string;
};
export = rc4;