UNPKG

207 BTypeScriptView Raw
1import { Split } from './Split';
2import { Length as LLength } from '../List/Length';
3/**
4 * Get the length of a `string`
5 * @param S
6 */
7export declare type Length<S extends string> = LLength<Split<S, ''>>;