fbredius/storybook

View on GitHub
addons/actions/src/models/ActionOptions.ts

Summary

Maintainability
A
0 mins
Test Coverage
import type { Options as TelejsonOptions } from 'telejson';

interface Options {
  depth: number; // backards compatibility, remove in 7.0
  clearOnStoryChange: boolean;
  limit: number;
}

export type ActionOptions = Partial<Options> & Partial<TelejsonOptions>;