forked from templates/nextjs-template
9 lines
281 B
TypeScript
9 lines
281 B
TypeScript
|
|
import type { {{name.pascalCase}}Factory } from './types/{{name.kebabCase}}-factory.type';
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* Создаёт публичный API бизнес-модуля {{name.pascalCase}}.
|
|||
|
|
*/
|
|||
|
|
export const {{name.camelCase}}Factory: {{name.pascalCase}}Factory = () => {
|
|||
|
|
return {};
|
|||
|
|
};
|