aboutsummaryrefslogtreecommitdiff
path: root/apps/website/src/types/smartypants.d.ts
blob: c61e268a1219a4ae36e8a671228f36411a621481 (plain)
1
2
3
4
declare module 'smartypants' {
	type Behavior = 0 | 1 | 2 | 3 | -1 | 'q' | 'b' | 'B' | 'd' | 'D' | 'i' | 'e' | 'w';
	export default function smartypants(text: string, behavior: Behavior): string;
}