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