import FlashInterface from '@/interfaces/FlashInterface';
import { PropType } from 'vue';
export default {
props: {
message: {
type: Object as PropType<FlashInterface>,
required: true
}
},
setup(props, context) {
// Stuff
}
};