DefinitelyTyped/types/is-alphanumerical/index.d.ts
2017-07-05 16:50:18 -07:00

8 lines
329 B
TypeScript

// Type definitions for is-alphanumerical 1.0
// Project: https://github.com/wooorm/is-alphanumerical/
// Definitions by: Vu Tran <https://github.com/vutran>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare function isAlphanumerical(val: string | boolean | number): boolean;
export = isAlphanumerical;