mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-17 06:56:03 +01:00
16 lines
370 B
TypeScript
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',
|
|
},
|
|
},
|
|
]);
|
|
};
|