14 lines
198 B
JavaScript
14 lines
198 B
JavaScript
import SimpleSchema from 'simpl-schema';
|
|
|
|
let SlotSchema = new SimpleSchema({
|
|
slotTags: {
|
|
type: Array,
|
|
defaultValue: [],
|
|
},
|
|
'slotTags.$': {
|
|
type: String,
|
|
},
|
|
});
|
|
|
|
export { SlotSchema };
|