1import { TokenFlow } from "../flow"; 2 3export class EmptyFlow extends TokenFlow { 4 get requiredLength(): number | null { 5 return 0; 6 } 7}