6 lines
169 B
TypeScript
6 lines
169 B
TypeScript
import { Input } from '@any-touch/shared';
|
|
declare function ComputeMaxLength(): (input: Input) => {
|
|
maxPointLength: number;
|
|
};
|
|
export default ComputeMaxLength;
|