mirror of
https://github.com/pengzhanbo/vuepress-theme-plume.git
synced 2026-04-24 11:08:16 +08:00
13 lines
260 B
TypeScript
13 lines
260 B
TypeScript
import type { SizeOptions } from './size.js'
|
|
|
|
export interface CodeSandboxTokenMeta extends SizeOptions {
|
|
user?: string
|
|
id?: string
|
|
layout?: string
|
|
type?: 'button' | 'embed'
|
|
title?: string
|
|
filepath?: string
|
|
navbar?: boolean
|
|
console?: boolean
|
|
}
|