mirror of
https://github.com/chenasraf/DefinitelyTyped.git
synced 2026-05-17 17:48:06 +00:00
14 lines
409 B
TypeScript
14 lines
409 B
TypeScript
import type { CRCBufferSource } from '.';
|
|
export type { CRCBufferSource };
|
|
|
|
export const model: 'ccitt';
|
|
export function signed(buf: CRCBufferSource, previous?: number): number;
|
|
|
|
declare function crc17ccitt(buf: CRCBufferSource, previous?: number): number;
|
|
declare namespace crc17ccitt {
|
|
export { model, signed, crc17ccitt as unsigned };
|
|
export type { CRCBufferSource };
|
|
}
|
|
|
|
export default crc17ccitt;
|