-
-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
242 additions
and
205 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,55 +1,60 @@ | ||
import type {CornerDotType, CornerSquareType, DotType, ShapeType} from "qr-code-styling"; | ||
import type { | ||
CornerDotType, | ||
CornerSquareType, | ||
DotType, | ||
ShapeType, | ||
} from 'qr-code-styling'; | ||
|
||
export interface Config { | ||
app: { | ||
toolbox: { | ||
/** | ||
* QR code settings | ||
* @visibility frontend | ||
*/ | ||
qrCode: { | ||
/** | ||
* all the defaults for the qr code generator | ||
* @deepVisibility frontend | ||
*/ | ||
defaults: { | ||
/** | ||
* Dot type | ||
* @visibility frontend | ||
*/ | ||
dotType: DotType; | ||
/** | ||
* Dot color | ||
* @visibility frontend | ||
*/ | ||
dotColor: string; | ||
/** | ||
* Corner square type | ||
* @visibility frontend | ||
*/ | ||
cornerSquareType: CornerSquareType; | ||
/** | ||
* Corner square color | ||
* @visibility frontend | ||
*/ | ||
cornerSquareColor: string; | ||
/** | ||
* Corner dot type | ||
* @visibility frontend | ||
*/ | ||
cornerDotType: CornerDotType; | ||
/** | ||
* Corner dot color | ||
* @visibility frontend | ||
*/ | ||
cornerDotColor: string; | ||
/** | ||
* Shape | ||
* @visibility frontend | ||
*/ | ||
shape: ShapeType; | ||
}; | ||
}; | ||
app: { | ||
toolbox: { | ||
/** | ||
* QR code settings | ||
* @visibility frontend | ||
*/ | ||
qrCode: { | ||
/** | ||
* all the defaults for the qr code generator | ||
* @deepVisibility frontend | ||
*/ | ||
defaults: { | ||
/** | ||
* Dot type | ||
* @visibility frontend | ||
*/ | ||
dotType: DotType; | ||
/** | ||
* Dot color | ||
* @visibility frontend | ||
*/ | ||
dotColor: string; | ||
/** | ||
* Corner square type | ||
* @visibility frontend | ||
*/ | ||
cornerSquareType: CornerSquareType; | ||
/** | ||
* Corner square color | ||
* @visibility frontend | ||
*/ | ||
cornerSquareColor: string; | ||
/** | ||
* Corner dot type | ||
* @visibility frontend | ||
*/ | ||
cornerDotType: CornerDotType; | ||
/** | ||
* Corner dot color | ||
* @visibility frontend | ||
*/ | ||
cornerDotColor: string; | ||
/** | ||
* Shape | ||
* @visibility frontend | ||
*/ | ||
shape: ShapeType; | ||
}; | ||
}; | ||
}; | ||
}; | ||
} |
Oops, something went wrong.