mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-12-17 17:56:38 +00:00
18 lines
417 B
TypeScript
18 lines
417 B
TypeScript
|
|
export type InitialValuesType = {
|
||
|
|
length: string; // user enters a number here
|
||
|
|
includeLowercase: boolean;
|
||
|
|
includeUppercase: boolean;
|
||
|
|
includeNumbers: boolean;
|
||
|
|
includeSymbols: boolean;
|
||
|
|
avoidAmbiguous: boolean;
|
||
|
|
};
|
||
|
|
|
||
|
|
export const initialValues: InitialValuesType = {
|
||
|
|
length: '12',
|
||
|
|
includeLowercase: true,
|
||
|
|
includeUppercase: true,
|
||
|
|
includeNumbers: true,
|
||
|
|
includeSymbols: true,
|
||
|
|
avoidAmbiguous: false
|
||
|
|
};
|