mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-05-02 10:56:00 +02:00
* Update settings.vue * Update settings.vue * Update settings.vue * Update settings.vue * Update settings.vue * Update performance.vue * Update performance.vue * Update performance.vue * Update external-services.vue * wip * wip * Update security.vue * Update settings.vue * Update CHANGELOG.md * wip * Update moderation.vue * wip * Update branding.vue * wip * Update email-settings.vue * Update system-webhook.vue * Update MkSuperMenu.vue * Update index.vue
28 lines
587 B
TypeScript
28 lines
587 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
type XGeneratedSearchIndexItem = {
|
|
id: string;
|
|
parentId?: string;
|
|
path?: string;
|
|
label: string;
|
|
keywords: string[];
|
|
texts: string[];
|
|
icon?: string;
|
|
inlining?: string[];
|
|
};
|
|
|
|
declare module 'search-index' {
|
|
export type GeneratedSearchIndexItem = XGeneratedSearchIndexItem;
|
|
}
|
|
|
|
declare module 'search-index:settings' {
|
|
export const searchIndexes: XGeneratedSearchIndexItem[];
|
|
}
|
|
|
|
declare module 'search-index:admin' {
|
|
export const searchIndexes: XGeneratedSearchIndexItem[];
|
|
}
|