Files
ox_lib/package/client/index.ts

10 lines
246 B
TypeScript
Raw Normal View History

2022-09-14 13:50:32 +02:00
import * as lib from './resource';
2022-09-18 00:48:04 +10:00
import { cache, onCache } from '../shared/resource';
cache.playerId = PlayerId();
cache.serverId = GetPlayerServerId(cache.playerId);
2022-09-14 13:50:32 +02:00
2022-09-18 00:48:04 +10:00
export { cache, onCache };
export * from './resource';
2022-09-14 13:50:32 +02:00
export default lib;