···3434export type { Int64 } from './int64.ts';
3535export type { Uint64 } from './uint64.ts';
3636export type { Bool } from './bool.ts';
3737-export type { AtomicInt8 } from './atomic-int8.ts';
3838-export type { AtomicUint8 } from './atomic-uint8.ts';
3939-export type { AtomicInt16 } from './atomic-int16.ts';
4040-export type { AtomicUint16 } from './atomic-uint16.ts';
4141-export type { AtomicInt32 } from './atomic-int32.ts';
4242-export type { AtomicUint32 } from './atomic-uint32.ts';
4343-export type { AtomicInt64 } from './atomic-int64.ts';
4444-export type { AtomicUint64 } from './atomic-uint64.ts';
4545-export type { AtomicBool } from './atomic-bool.ts';
3737+export type { Int8Atomic } from './int8-atomic.ts';
3838+export type { Uint8Atomic } from './uint8-atomic.ts';
3939+export type { Int16Atomic } from './int16-atomic.ts';
4040+export type { Uint16Atomic } from './uint16-atomic.ts';
4141+export type { Int32Atomic } from './int32-atomic.ts';
4242+export type { Uint32Atomic } from './uint32-atomic.ts';
4343+export type { Int64Atomic } from './int64-atomic.ts';
4444+export type { Uint64Atomic } from './uint64-atomic.ts';
4545+export type { BoolAtomic } from './bool-atomic.ts';
4646export type { Mutex, MutexGuard } from './mutex.ts';
4747export type { RwLock, ReadGuard, WriteGuard } from './rwlock.ts';
4848export type { SharedStruct } from './shared-struct.ts';