@mitre/nuxt-smartscript
Version:
Smart typography transformations for Nuxt - automatic superscript, subscript, and symbol formatting
54 lines (53 loc) • 1.21 kB
TypeScript
/**
* SINGLE SOURCE OF TRUTH for module defaults
* This file is imported by BOTH module.ts and runtime/config.ts
* NEVER duplicate these values elsewhere!
*/
export declare const SHARED_DEFAULTS: {
enabled: boolean;
positioning: {
trademark: {
body: string;
headers: string;
fontSize: string;
};
registered: {
body: string;
headers: string;
fontSize: string;
};
ordinals: {
fontSize: string;
};
chemicals: {
fontSize: string;
};
};
selectors: {
include: string[];
exclude: string[];
};
performance: {
debounce: number;
batchSize: number;
delay: number;
};
transformations: {
trademark: boolean;
registered: boolean;
copyright: boolean;
ordinals: boolean;
chemicals: boolean;
mathSuper: boolean;
mathSub: boolean;
};
symbols: {
trademark: string[];
registered: string[];
copyright: string[];
ordinals: boolean;
};
ssr: boolean;
client: boolean;
debug: boolean;
};