Files
ox_lib/package/client/index.ts
2022-09-18 00:48:04 +10:00

10 lines
246 B
TypeScript

import * as lib from './resource';
import { cache, onCache } from '../shared/resource';
cache.playerId = PlayerId();
cache.serverId = GetPlayerServerId(cache.playerId);
export { cache, onCache };
export * from './resource';
export default lib;