mirror of
https://github.com/enso-org/enso.git
synced 2024-12-23 11:41:56 +03:00
0a70f2edf5
- 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"
12 lines
338 B
TypeScript
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
|
|
}
|