blob: 940b445e9051507e6945d754badbba00ad558bc5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/*
* 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'];
|