mirror of
https://github.com/rerurate514/insert_ArknightsURL_banners.git
synced 2026-07-22 13:00:25 +00:00
9 lines
204 B
TypeScript
9 lines
204 B
TypeScript
export interface IAUBPluginSettings {
|
|
bannerProperty: string;
|
|
imagesPerPage: number;
|
|
}
|
|
|
|
export const DEFAULT_SETTINGS: IAUBPluginSettings = {
|
|
bannerProperty: 'banner',
|
|
imagesPerPage: 12
|
|
}
|