mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-05-06 01:15:56 +02:00
* wip * wip * wip * wip * revert unnecessary changes * wip * refactor(frontend): enforce verbatimModuleSyntax * fix * refactor(frontend-shared): enforce verbatimModuleSyntax * wip * refactor(frontend-embed): enforce verbatimModuleSyntax * enforce consistent-type-imports * fix lint config * attemt to fix ci * fix lint * fix * fix * fix
14 lines
294 B
TypeScript
14 lines
294 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import type { Meta } from '@storybook/vue3';
|
|
import MkError from './MkError.vue';
|
|
|
|
export const argTypes = {
|
|
onRetry: {
|
|
action: 'retry',
|
|
},
|
|
} satisfies Meta<typeof MkError>['argTypes'];
|