9 lines
168 B
TypeScript
9 lines
168 B
TypeScript
import type { SizeOptions } from './size'
|
|
|
|
export interface JSFiddleTokenMeta extends SizeOptions {
|
|
source: string
|
|
title?: string
|
|
theme?: string
|
|
tab?: string
|
|
}
|