blob: cd7fada1891168a799aa5078516f940c9dcf9068 (
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 { Meta } from '@storybook/vue3';
import MkError from './MkError.vue';
export const argTypes = {
onRetry: {
action: 'retry',
},
} satisfies Meta<typeof MkError>['argTypes'];
|