15 lines
278 B
JavaScript
15 lines
278 B
JavaScript
import SimpleSchema from 'simpl-schema';
|
|
|
|
const ErrorSchema = new SimpleSchema({
|
|
// The roll that determines how much to change the attribute
|
|
message: {
|
|
type: String,
|
|
},
|
|
// Who this adjustment applies to
|
|
type: {
|
|
type: String,
|
|
},
|
|
});
|
|
|
|
export default ErrorSchema;
|