export type AbsPath = "AbsolutePath" | string;
export type RelPath = "RelativePath" | string;
export type AbsFile = "AbsoluteFilePath" | string;
export type RelFile = "RelativeFilePath" | string;
export type AbsDir = "AbsoluteDirectory" | string;
export type RelDir = "RelativeDirectory" | string;
export type ArithmeticStr = "[,>,],+[,-,**,^,~,!,*." | string;
