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

16 lines
370 B
TypeScript

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