Files
ox_lib/web/src/features/dev/debug/textui.ts
T

16 lines
370 B
TypeScript
Raw Normal View History

import { TextUiProps } from '../../../typings';
2022-08-27 15:58:36 +02:00
import { debugData } from '../../../utils/debugData';
2022-08-27 15:40:41 +02:00
export const debugTextUI = () => {
debugData<TextUiProps>([
{
2022-08-27 15:58:36 +02:00
action: 'textUi',
2022-08-27 15:40:41 +02:00
data: {
2022-08-27 15:58:36 +02:00
text: '[E] - Access locker inventory \n [G] - Do something else',
position: 'right-center',
icon: 'door-open',
2022-08-27 15:40:41 +02:00
},
},
]);
};