14 lines
214 B
TypeScript
14 lines
214 B
TypeScript
type MiQType =
|
|
"Buffer" |
|
|
"Base64Data" |
|
|
"Base64URL";
|
|
|
|
export interface MiQOptions {
|
|
type: MiQType;
|
|
color: boolean;
|
|
text: string;
|
|
iconURL: string;
|
|
userName: string;
|
|
userID: string;
|
|
}
|