2024-06-26 13:10:55 +02:00

5 lines
90 B
TypeScript

declare module 'sha1' {
const sha1: (message: string) => string;
export = sha1;
}