1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-04 22:25:50 +02:00

build(#10336): impl SatisfiesExpression

This commit is contained in:
Acid Chicken (硫酸鶏)
2023-03-20 23:07:13 +09:00
parent 2eecb8e876
commit bdbbb92ff6
431 changed files with 1414 additions and 1383 deletions

View File

@@ -1,9 +1,9 @@
import { Meta, Story } from '@storybook/vue3';
import { Meta, StoryObj } from '@storybook/vue3';
import overview_ap_requests from './overview.ap-requests.vue';
const meta = {
title: 'pages/admin/overview.ap-requests',
component: overview_ap_requests,
};
} satisfies Meta<typeof overview_ap_requests>;
export const Default = {
render(args, { argTypes }) {
return {
@@ -17,5 +17,5 @@ export const Default = {
parameters: {
layout: 'fullscreen',
},
};
} satisfies StoryObj<typeof overview_ap_requests>;
export default meta;