You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
364 B
26 lines
364 B
export const loadFontFace = {
|
|
family: {
|
|
type: String,
|
|
required: true
|
|
},
|
|
source: {
|
|
type: String,
|
|
required: true
|
|
},
|
|
desc: {
|
|
type: Object,
|
|
required: false
|
|
},
|
|
success: {
|
|
type: Function,
|
|
required: false
|
|
},
|
|
fail: {
|
|
type: Function,
|
|
required: false
|
|
},
|
|
complete: {
|
|
type: Function,
|
|
required: false
|
|
}
|
|
}
|
|
|