enso/app/gui2/node.env.d.ts
somebody1234 0a70f2edf5
Vue visualizations (#7773)
- Closes #7733
- Add infrastructure for defining custom visualizations
- Add all visualizations

# Important Notes
⚠️ Changes made:
- "Fit all" has been changed to always animate - this is because behavior was previously inconsistent:
- the scatterplot would always animate on "Fit all", but
- the histogram would never animate on "Fit all"
2023-09-26 08:14:56 +00:00

12 lines
338 B
TypeScript

module 'tailwindcss/nesting' {
import { PluginCreator } from 'postcss'
declare const plugin: PluginCreator<unknown>
export default plugin
}
// This is an augmentation to the built-in `ImportMeta` interface.
// This file MUST NOT contain any top-level imports.
interface ImportMeta {
vitest: typeof import('vitest') | undefined
}