mirror of
https://github.com/liubinfighter/csv-lite.git
synced 2026-07-22 05:43:52 +00:00
8 lines
135 B
TypeScript
8 lines
135 B
TypeScript
export class Notice {
|
|
constructor(public message: string) {}
|
|
}
|
|
|
|
// 导出默认对象以确保兼容性
|
|
export default {
|
|
Notice
|
|
};
|