Skip to content

Commit

Permalink
Remove unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
tmeasday committed May 14, 2021
1 parent 7aa36d7 commit dd543f5
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions addons/docs/src/frameworks/vue/extractArgTypes.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
import { ArgTypes } from '@storybook/api';
import { ArgTypesExtractor, hasDocgen, extractComponentProps } from '../../lib/docgen';
import { convert } from '../../lib/convert';
import { trimQuotes } from '../../lib/convert/utils';

const SECTIONS = ['props', 'events', 'slots'];

const trim = (val: any) => (val && typeof val === 'string' ? trimQuotes(val) : val);

export const extractArgTypes: ArgTypesExtractor = (component) => {
if (!hasDocgen(component)) {
return null;
Expand Down

0 comments on commit dd543f5

Please sign in to comment.