Skip to content

Commit

Permalink
chore: run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
clanghout committed Oct 31, 2024
1 parent d0cd2c4 commit 8b2fd5c
Show file tree
Hide file tree
Showing 2 changed files with 242 additions and 205 deletions.
105 changes: 55 additions & 50 deletions plugins/toolbox/config.d.ts
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;
};
};
};
};
}
Loading

0 comments on commit 8b2fd5c

Please sign in to comment.