@strapi/generators 0.0.0-next.fb3a0b82484ce466b1efb1b28f16fc8ef73aba4a → 0.0.0-next.fc1775f7731f8999840e56e298a216b9a6c5c4ad
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +18 -3
- package/dist/index.d.ts +3 -2
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +60 -27
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +41 -0
- package/dist/index.mjs.map +1 -0
- package/dist/plopfile.d.ts +2 -1
- package/dist/plopfile.d.ts.map +1 -0
- package/dist/plopfile.js +585 -28
- package/dist/plopfile.js.map +1 -1
- package/dist/plopfile.mjs +582 -0
- package/dist/plopfile.mjs.map +1 -0
- package/dist/plops/api.d.ts +2 -1
- package/dist/plops/api.d.ts.map +1 -0
- package/dist/plops/content-type.d.ts +2 -1
- package/dist/plops/content-type.d.ts.map +1 -0
- package/dist/plops/controller.d.ts +2 -1
- package/dist/plops/controller.d.ts.map +1 -0
- package/dist/plops/middleware.d.ts +2 -1
- package/dist/plops/middleware.d.ts.map +1 -0
- package/dist/plops/migration.d.ts +2 -1
- package/dist/plops/migration.d.ts.map +1 -0
- package/dist/plops/policy.d.ts +2 -1
- package/dist/plops/policy.d.ts.map +1 -0
- package/dist/plops/prompts/bootstrap-api-prompts.d.ts +1 -0
- package/dist/plops/prompts/bootstrap-api-prompts.d.ts.map +1 -0
- package/dist/plops/prompts/ct-names-prompts.d.ts +1 -0
- package/dist/plops/prompts/ct-names-prompts.d.ts.map +1 -0
- package/dist/plops/prompts/get-attributes-prompts.d.ts +1 -0
- package/dist/plops/prompts/get-attributes-prompts.d.ts.map +1 -0
- package/dist/plops/prompts/get-destination-prompts.d.ts +1 -0
- package/dist/plops/prompts/get-destination-prompts.d.ts.map +1 -0
- package/dist/plops/prompts/kind-prompts.d.ts +1 -0
- package/dist/plops/prompts/kind-prompts.d.ts.map +1 -0
- package/dist/plops/service.d.ts +2 -1
- package/dist/plops/service.d.ts.map +1 -0
- package/dist/plops/utils/get-file-path.d.ts +2 -1
- package/dist/plops/utils/get-file-path.d.ts.map +1 -0
- package/dist/plops/utils/get-formatted-date.d.ts +1 -0
- package/dist/plops/utils/get-formatted-date.d.ts.map +1 -0
- package/dist/plops/utils/validate-attribute-input.d.ts +1 -0
- package/dist/plops/utils/validate-attribute-input.d.ts.map +1 -0
- package/dist/plops/utils/validate-file-name-input.d.ts +1 -0
- package/dist/plops/utils/validate-file-name-input.d.ts.map +1 -0
- package/dist/plops/utils/validate-input.d.ts +1 -0
- package/dist/plops/utils/validate-input.d.ts.map +1 -0
- package/dist/templates/js/content-type.schema.json.hbs +0 -1
- package/dist/templates/ts/content-type.schema.json.hbs +0 -1
- package/dist/templates/ts/middleware.ts.hbs +2 -2
- package/package.json +18 -16
- package/dist/files/js/plugin/.editorconfig +0 -7
- package/dist/files/js/plugin/.gitattributes +0 -103
- package/dist/files/js/plugin/admin/src/components/Initializer/index.js +0 -26
- package/dist/files/js/plugin/admin/src/components/PluginIcon/index.js +0 -12
- package/dist/files/js/plugin/admin/src/index.js +0 -63
- package/dist/files/js/plugin/admin/src/pages/App/index.js +0 -25
- package/dist/files/js/plugin/admin/src/pages/HomePage/index.js +0 -20
- package/dist/files/js/plugin/admin/src/pluginId.js +0 -5
- package/dist/files/js/plugin/admin/src/translations/en.json +0 -1
- package/dist/files/js/plugin/admin/src/translations/fr.json +0 -1
- package/dist/files/js/plugin/admin/src/utils/getTrad.js +0 -5
- package/dist/files/js/plugin/server/bootstrap.js +0 -5
- package/dist/files/js/plugin/server/config/index.js +0 -6
- package/dist/files/js/plugin/server/content-types/index.js +0 -3
- package/dist/files/js/plugin/server/controllers/index.js +0 -7
- package/dist/files/js/plugin/server/controllers/my-controller.js.hbs +0 -10
- package/dist/files/js/plugin/server/destroy.js +0 -5
- package/dist/files/js/plugin/server/index.js +0 -25
- package/dist/files/js/plugin/server/middlewares/index.js +0 -3
- package/dist/files/js/plugin/server/policies/index.js +0 -3
- package/dist/files/js/plugin/server/register.js +0 -5
- package/dist/files/js/plugin/server/routes/index.js +0 -10
- package/dist/files/js/plugin/server/services/index.js +0 -7
- package/dist/files/js/plugin/server/services/my-service.js +0 -7
- package/dist/files/js/plugin/strapi-admin.js +0 -3
- package/dist/files/js/plugin/strapi-server.js +0 -3
- package/dist/files/ts/plugin/.editorconfig +0 -7
- package/dist/files/ts/plugin/.gitattributes +0 -103
- package/dist/files/ts/plugin/admin/src/components/Initializer/index.tsx +0 -24
- package/dist/files/ts/plugin/admin/src/components/PluginIcon/index.tsx +0 -12
- package/dist/files/ts/plugin/admin/src/index.tsx +0 -67
- package/dist/files/ts/plugin/admin/src/pages/App/index.tsx +0 -25
- package/dist/files/ts/plugin/admin/src/pages/HomePage/index.tsx +0 -19
- package/dist/files/ts/plugin/admin/src/pluginId.ts +0 -5
- package/dist/files/ts/plugin/admin/src/translations/en.json +0 -1
- package/dist/files/ts/plugin/admin/src/translations/fr.json +0 -1
- package/dist/files/ts/plugin/admin/src/utils/getTrad.ts +0 -5
- package/dist/files/ts/plugin/custom.d.ts +0 -5
- package/dist/files/ts/plugin/server/bootstrap.ts +0 -5
- package/dist/files/ts/plugin/server/config/index.ts +0 -4
- package/dist/files/ts/plugin/server/content-types/index.ts +0 -1
- package/dist/files/ts/plugin/server/controllers/index.ts +0 -5
- package/dist/files/ts/plugin/server/controllers/my-controller.ts.hbs +0 -10
- package/dist/files/ts/plugin/server/destroy.ts +0 -5
- package/dist/files/ts/plugin/server/index.ts +0 -23
- package/dist/files/ts/plugin/server/middlewares/index.ts +0 -1
- package/dist/files/ts/plugin/server/policies/index.ts +0 -1
- package/dist/files/ts/plugin/server/register.ts +0 -5
- package/dist/files/ts/plugin/server/routes/index.ts +0 -10
- package/dist/files/ts/plugin/server/services/index.ts +0 -5
- package/dist/files/ts/plugin/server/services/my-service.ts +0 -7
- package/dist/files/ts/plugin/strapi-admin.js +0 -3
- package/dist/files/ts/plugin/strapi-server.js +0 -3
- package/dist/files/ts/plugin/tsconfig.json +0 -20
- package/dist/files/ts/plugin/tsconfig.server.json +0 -25
- package/dist/plops/api.js +0 -79
- package/dist/plops/api.js.map +0 -1
- package/dist/plops/content-type.js +0 -158
- package/dist/plops/content-type.js.map +0 -1
- package/dist/plops/controller.js +0 -40
- package/dist/plops/controller.js.map +0 -1
- package/dist/plops/middleware.js +0 -40
- package/dist/plops/middleware.js.map +0 -1
- package/dist/plops/migration.js +0 -35
- package/dist/plops/migration.js.map +0 -1
- package/dist/plops/plugin.d.ts +0 -3
- package/dist/plops/plugin.js +0 -107
- package/dist/plops/plugin.js.map +0 -1
- package/dist/plops/policy.js +0 -40
- package/dist/plops/policy.js.map +0 -1
- package/dist/plops/prompts/bootstrap-api-prompts.js +0 -12
- package/dist/plops/prompts/bootstrap-api-prompts.js.map +0 -1
- package/dist/plops/prompts/ct-names-prompts.js +0 -68
- package/dist/plops/prompts/ct-names-prompts.js.map +0 -1
- package/dist/plops/prompts/draft-and-publish-prompts.d.ts +0 -3
- package/dist/plops/prompts/draft-and-publish-prompts.js +0 -12
- package/dist/plops/prompts/draft-and-publish-prompts.js.map +0 -1
- package/dist/plops/prompts/get-attributes-prompts.js +0 -95
- package/dist/plops/prompts/get-attributes-prompts.js.map +0 -1
- package/dist/plops/prompts/get-destination-prompts.js +0 -72
- package/dist/plops/prompts/get-destination-prompts.js.map +0 -1
- package/dist/plops/prompts/kind-prompts.js +0 -21
- package/dist/plops/prompts/kind-prompts.js.map +0 -1
- package/dist/plops/service.js +0 -38
- package/dist/plops/service.js.map +0 -1
- package/dist/plops/utils/get-file-path.js +0 -15
- package/dist/plops/utils/get-file-path.js.map +0 -1
- package/dist/plops/utils/get-formatted-date.js +0 -9
- package/dist/plops/utils/get-formatted-date.js.map +0 -1
- package/dist/plops/utils/validate-attribute-input.js +0 -10
- package/dist/plops/utils/validate-attribute-input.js.map +0 -1
- package/dist/plops/utils/validate-file-name-input.js +0 -10
- package/dist/plops/utils/validate-file-name-input.js.map +0 -1
- package/dist/plops/utils/validate-input.js +0 -10
- package/dist/plops/utils/validate-input.js.map +0 -1
- package/dist/templates/js/README.md.hbs +0 -3
- package/dist/templates/js/plugin-package.json.hbs +0 -42
- package/dist/templates/ts/README.md.hbs +0 -3
- package/dist/templates/ts/plugin-package.json.hbs +0 -51
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
|
|
3
|
-
const register = require('./register');
|
|
4
|
-
const bootstrap = require('./bootstrap');
|
|
5
|
-
const destroy = require('./destroy');
|
|
6
|
-
const config = require('./config');
|
|
7
|
-
const contentTypes = require('./content-types');
|
|
8
|
-
const controllers = require('./controllers');
|
|
9
|
-
const routes = require('./routes');
|
|
10
|
-
const middlewares = require('./middlewares');
|
|
11
|
-
const policies = require('./policies');
|
|
12
|
-
const services = require('./services');
|
|
13
|
-
|
|
14
|
-
module.exports = {
|
|
15
|
-
register,
|
|
16
|
-
bootstrap,
|
|
17
|
-
destroy,
|
|
18
|
-
config,
|
|
19
|
-
controllers,
|
|
20
|
-
routes,
|
|
21
|
-
services,
|
|
22
|
-
contentTypes,
|
|
23
|
-
policies,
|
|
24
|
-
middlewares,
|
|
25
|
-
};
|
|
@@ -1,103 +0,0 @@
|
|
|
1
|
-
# From https://github.com/Danimoth/gitattributes/blob/master/Web.gitattributes
|
|
2
|
-
|
|
3
|
-
# Handle line endings automatically for files detected as text
|
|
4
|
-
# and leave all files detected as binary untouched.
|
|
5
|
-
* text=auto
|
|
6
|
-
|
|
7
|
-
#
|
|
8
|
-
# The above will handle all files NOT found below
|
|
9
|
-
#
|
|
10
|
-
|
|
11
|
-
#
|
|
12
|
-
## These files are text and should be normalized (Convert crlf => lf)
|
|
13
|
-
#
|
|
14
|
-
|
|
15
|
-
# source code
|
|
16
|
-
*.php text
|
|
17
|
-
*.css text
|
|
18
|
-
*.sass text
|
|
19
|
-
*.scss text
|
|
20
|
-
*.less text
|
|
21
|
-
*.styl text
|
|
22
|
-
*.js text eol=lf
|
|
23
|
-
*.coffee text
|
|
24
|
-
*.json text
|
|
25
|
-
*.htm text
|
|
26
|
-
*.html text
|
|
27
|
-
*.xml text
|
|
28
|
-
*.svg text
|
|
29
|
-
*.txt text
|
|
30
|
-
*.ini text
|
|
31
|
-
*.inc text
|
|
32
|
-
*.pl text
|
|
33
|
-
*.rb text
|
|
34
|
-
*.py text
|
|
35
|
-
*.scm text
|
|
36
|
-
*.sql text
|
|
37
|
-
*.sh text
|
|
38
|
-
*.bat text
|
|
39
|
-
|
|
40
|
-
# templates
|
|
41
|
-
*.ejs text
|
|
42
|
-
*.hbt text
|
|
43
|
-
*.jade text
|
|
44
|
-
*.haml text
|
|
45
|
-
*.hbs text
|
|
46
|
-
*.dot text
|
|
47
|
-
*.tmpl text
|
|
48
|
-
*.phtml text
|
|
49
|
-
|
|
50
|
-
# git config
|
|
51
|
-
.gitattributes text
|
|
52
|
-
.gitignore text
|
|
53
|
-
.gitconfig text
|
|
54
|
-
|
|
55
|
-
# code analysis config
|
|
56
|
-
.jshintrc text
|
|
57
|
-
.jscsrc text
|
|
58
|
-
.jshintignore text
|
|
59
|
-
.csslintrc text
|
|
60
|
-
|
|
61
|
-
# misc config
|
|
62
|
-
*.yaml text
|
|
63
|
-
*.yml text
|
|
64
|
-
.editorconfig text
|
|
65
|
-
|
|
66
|
-
# build config
|
|
67
|
-
*.npmignore text
|
|
68
|
-
*.bowerrc text
|
|
69
|
-
|
|
70
|
-
# Heroku
|
|
71
|
-
Procfile text
|
|
72
|
-
.slugignore text
|
|
73
|
-
|
|
74
|
-
# Documentation
|
|
75
|
-
*.md text
|
|
76
|
-
LICENSE text
|
|
77
|
-
AUTHORS text
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
#
|
|
81
|
-
## These files are binary and should be left untouched
|
|
82
|
-
#
|
|
83
|
-
|
|
84
|
-
# (binary is a macro for -text -diff)
|
|
85
|
-
*.png binary
|
|
86
|
-
*.jpg binary
|
|
87
|
-
*.jpeg binary
|
|
88
|
-
*.gif binary
|
|
89
|
-
*.ico binary
|
|
90
|
-
*.mov binary
|
|
91
|
-
*.mp4 binary
|
|
92
|
-
*.mp3 binary
|
|
93
|
-
*.flv binary
|
|
94
|
-
*.fla binary
|
|
95
|
-
*.swf binary
|
|
96
|
-
*.gz binary
|
|
97
|
-
*.zip binary
|
|
98
|
-
*.7z binary
|
|
99
|
-
*.ttf binary
|
|
100
|
-
*.eot binary
|
|
101
|
-
*.woff binary
|
|
102
|
-
*.pyc binary
|
|
103
|
-
*.pdf binary
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
*
|
|
3
|
-
* Initializer
|
|
4
|
-
*
|
|
5
|
-
*/
|
|
6
|
-
|
|
7
|
-
import { useEffect, useRef } from 'react';
|
|
8
|
-
import pluginId from '../../pluginId';
|
|
9
|
-
|
|
10
|
-
type InitializerProps = {
|
|
11
|
-
setPlugin: (id: string) => void;
|
|
12
|
-
};
|
|
13
|
-
|
|
14
|
-
const Initializer = ({ setPlugin }: InitializerProps) => {
|
|
15
|
-
const ref = useRef(setPlugin);
|
|
16
|
-
|
|
17
|
-
useEffect(() => {
|
|
18
|
-
ref.current(pluginId);
|
|
19
|
-
}, []);
|
|
20
|
-
|
|
21
|
-
return null;
|
|
22
|
-
};
|
|
23
|
-
|
|
24
|
-
export default Initializer;
|
|
@@ -1,67 +0,0 @@
|
|
|
1
|
-
import { prefixPluginTranslations } from '@strapi/helper-plugin';
|
|
2
|
-
|
|
3
|
-
import pluginPkg from '../../package.json';
|
|
4
|
-
import pluginId from './pluginId';
|
|
5
|
-
import Initializer from './components/Initializer';
|
|
6
|
-
import PluginIcon from './components/PluginIcon';
|
|
7
|
-
|
|
8
|
-
const name = pluginPkg.strapi.name;
|
|
9
|
-
|
|
10
|
-
export default {
|
|
11
|
-
register(app: any) {
|
|
12
|
-
app.addMenuLink({
|
|
13
|
-
to: `/plugins/${pluginId}`,
|
|
14
|
-
icon: PluginIcon,
|
|
15
|
-
intlLabel: {
|
|
16
|
-
id: `${pluginId}.plugin.name`,
|
|
17
|
-
defaultMessage: name,
|
|
18
|
-
},
|
|
19
|
-
Component: async () => {
|
|
20
|
-
const component = await import(/* webpackChunkName: "[request]" */ './pages/App');
|
|
21
|
-
|
|
22
|
-
return component;
|
|
23
|
-
},
|
|
24
|
-
permissions: [
|
|
25
|
-
// Uncomment to set the permissions of the plugin here
|
|
26
|
-
// {
|
|
27
|
-
// action: '', // the action name should be plugin::plugin-name.actionType
|
|
28
|
-
// subject: null,
|
|
29
|
-
// },
|
|
30
|
-
],
|
|
31
|
-
});
|
|
32
|
-
const plugin = {
|
|
33
|
-
id: pluginId,
|
|
34
|
-
initializer: Initializer,
|
|
35
|
-
isReady: false,
|
|
36
|
-
name,
|
|
37
|
-
};
|
|
38
|
-
|
|
39
|
-
app.registerPlugin(plugin);
|
|
40
|
-
},
|
|
41
|
-
|
|
42
|
-
bootstrap(app: any) {},
|
|
43
|
-
|
|
44
|
-
async registerTrads(app: any) {
|
|
45
|
-
const { locales } = app;
|
|
46
|
-
|
|
47
|
-
const importedTrads = await Promise.all(
|
|
48
|
-
(locales as any[]).map((locale) => {
|
|
49
|
-
return import(`./translations/${locale}.json`)
|
|
50
|
-
.then(({ default: data }) => {
|
|
51
|
-
return {
|
|
52
|
-
data: prefixPluginTranslations(data, pluginId),
|
|
53
|
-
locale,
|
|
54
|
-
};
|
|
55
|
-
})
|
|
56
|
-
.catch(() => {
|
|
57
|
-
return {
|
|
58
|
-
data: {},
|
|
59
|
-
locale,
|
|
60
|
-
};
|
|
61
|
-
});
|
|
62
|
-
})
|
|
63
|
-
);
|
|
64
|
-
|
|
65
|
-
return Promise.resolve(importedTrads);
|
|
66
|
-
},
|
|
67
|
-
};
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
*
|
|
3
|
-
* This component is the skeleton around the actual pages, and should only
|
|
4
|
-
* contain code that should be seen on all pages. (e.g. navigation bar)
|
|
5
|
-
*
|
|
6
|
-
*/
|
|
7
|
-
|
|
8
|
-
import React from 'react';
|
|
9
|
-
import { Switch, Route } from 'react-router-dom';
|
|
10
|
-
import { AnErrorOccurred } from '@strapi/helper-plugin';
|
|
11
|
-
import pluginId from '../../pluginId';
|
|
12
|
-
import HomePage from '../HomePage';
|
|
13
|
-
|
|
14
|
-
const App = () => {
|
|
15
|
-
return (
|
|
16
|
-
<div>
|
|
17
|
-
<Switch>
|
|
18
|
-
<Route path={`/plugins/${pluginId}`} component={HomePage} exact />
|
|
19
|
-
<Route component={AnErrorOccurred} />
|
|
20
|
-
</Switch>
|
|
21
|
-
</div>
|
|
22
|
-
);
|
|
23
|
-
};
|
|
24
|
-
|
|
25
|
-
export default App;
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
*
|
|
3
|
-
* HomePage
|
|
4
|
-
*
|
|
5
|
-
*/
|
|
6
|
-
|
|
7
|
-
import React from 'react';
|
|
8
|
-
import pluginId from '../../pluginId';
|
|
9
|
-
|
|
10
|
-
const HomePage = () => {
|
|
11
|
-
return (
|
|
12
|
-
<div>
|
|
13
|
-
<h1>{pluginId}'s HomePage</h1>
|
|
14
|
-
<p>Happy coding</p>
|
|
15
|
-
</div>
|
|
16
|
-
);
|
|
17
|
-
};
|
|
18
|
-
|
|
19
|
-
export default HomePage;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export default {};
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import register from './register';
|
|
2
|
-
import bootstrap from './bootstrap';
|
|
3
|
-
import destroy from './destroy';
|
|
4
|
-
import config from './config';
|
|
5
|
-
import contentTypes from './content-types';
|
|
6
|
-
import controllers from './controllers';
|
|
7
|
-
import routes from './routes';
|
|
8
|
-
import middlewares from './middlewares';
|
|
9
|
-
import policies from './policies';
|
|
10
|
-
import services from './services';
|
|
11
|
-
|
|
12
|
-
export default {
|
|
13
|
-
register,
|
|
14
|
-
bootstrap,
|
|
15
|
-
destroy,
|
|
16
|
-
config,
|
|
17
|
-
controllers,
|
|
18
|
-
routes,
|
|
19
|
-
services,
|
|
20
|
-
contentTypes,
|
|
21
|
-
policies,
|
|
22
|
-
middlewares,
|
|
23
|
-
};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export default {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export default {};
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"extends": "@strapi/typescript-utils/tsconfigs/admin",
|
|
3
|
-
|
|
4
|
-
"compilerOptions": {
|
|
5
|
-
"target": "ESNext",
|
|
6
|
-
"strict": true
|
|
7
|
-
},
|
|
8
|
-
|
|
9
|
-
"include": ["admin", "custom.d.ts"],
|
|
10
|
-
|
|
11
|
-
"exclude": [
|
|
12
|
-
"node_modules/",
|
|
13
|
-
"dist/",
|
|
14
|
-
|
|
15
|
-
// Do not include server files in the server compilation
|
|
16
|
-
"server/",
|
|
17
|
-
// Do not include test files
|
|
18
|
-
"**/*.test.ts"
|
|
19
|
-
]
|
|
20
|
-
}
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"extends": "@strapi/typescript-utils/tsconfigs/server",
|
|
3
|
-
|
|
4
|
-
"compilerOptions": {
|
|
5
|
-
"outDir": "dist",
|
|
6
|
-
"rootDir": "."
|
|
7
|
-
},
|
|
8
|
-
|
|
9
|
-
"include": [
|
|
10
|
-
// Include the root directory
|
|
11
|
-
"server",
|
|
12
|
-
// Force the JSON files in the src folder to be included
|
|
13
|
-
"server/**/*.json"
|
|
14
|
-
],
|
|
15
|
-
|
|
16
|
-
"exclude": [
|
|
17
|
-
"node_modules/",
|
|
18
|
-
"dist/",
|
|
19
|
-
|
|
20
|
-
// Do not include admin files in the server compilation
|
|
21
|
-
"admin/",
|
|
22
|
-
// Do not include test files
|
|
23
|
-
"**/*.test.ts"
|
|
24
|
-
]
|
|
25
|
-
}
|