feat: Convert all app files to JS
This commit is contained in:
3
packages/backend/src/apps/placetel/dynamic-data/index.js
Normal file
3
packages/backend/src/apps/placetel/dynamic-data/index.js
Normal file
@@ -0,0 +1,3 @@
|
||||
import listNumbers from './list-numbers/index.js';
|
||||
|
||||
export default [listNumbers];
|
@@ -1,3 +0,0 @@
|
||||
import listNumbers from './list-numbers';
|
||||
|
||||
export default [listNumbers];
|
@@ -1,13 +1,9 @@
|
||||
import { IGlobalVariable, IJSONObject } from '@automatisch/types';
|
||||
|
||||
export default {
|
||||
name: 'List numbers',
|
||||
key: 'listNumbers',
|
||||
|
||||
async run($: IGlobalVariable) {
|
||||
const numbers: {
|
||||
data: IJSONObject[];
|
||||
} = {
|
||||
async run($) {
|
||||
const numbers = {
|
||||
data: [],
|
||||
};
|
||||
|
Reference in New Issue
Block a user