mirror of
https://github.com/chenasraf/DefinitelyTyped.git
synced 2026-05-18 01:49:01 +00:00
7 lines
152 B
TypeScript
7 lines
152 B
TypeScript
import { crc32, crc16 } from "js-crc";
|
|
|
|
// $ExpectType string
|
|
const crc32value = crc32("test");
|
|
// $ExpectType string
|
|
const crc16value = crc16("test");
|