AbdulElahGwaith's picture
Upload folder using huggingface_hub
88df9e4 verified
interface VariableSchema {
type: 'object'
additionalProperties: {
type: 'string'
lintable: boolean
}
}
const variablesSchema: VariableSchema = {
type: 'object',
additionalProperties: {
type: 'string',
lintable: true,
},
}
export default variablesSchema