10 lines
203 B
TypeScript
10 lines
203 B
TypeScript
import * as plugins from './plugins.js';
|
|
|
|
/**
|
|
* can be used to store binary data for users and organizations
|
|
*/
|
|
@plugins.smartdata.Collection(() => {
|
|
return null;
|
|
})
|
|
export class ReceptionStorage {}
|