Skip to content

Commit

Permalink
chore: format
Browse files Browse the repository at this point in the history
  • Loading branch information
peterpeterparker committed Feb 17, 2024
1 parent 89ebddc commit 0517a86
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
16 changes: 8 additions & 8 deletions packages/config/src/core/rules.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ export type MemoryText = 'Heap' | 'Stable';
export type RulesType = 'db' | 'storage';

export interface Rule {
collection: string;
read: PermissionText;
write: PermissionText;
memory: MemoryText;
created_at?: bigint;
updated_at?: bigint;
max_size?: number;
mutablePermissions: boolean;
collection: string;
read: PermissionText;
write: PermissionText;
memory: MemoryText;
created_at?: bigint;
updated_at?: bigint;
max_size?: number;
mutablePermissions: boolean;
}
2 changes: 1 addition & 1 deletion packages/config/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export type * from './core/encoding';
export type * from './core/rules';
export type * from './dev/juno.dev.config';
export type * from './core/encoding';
export type * from './mainnet/juno.config';
export type * from './mainnet/juno.env';
export type * from './mainnet/satellite.config';
Expand Down
2 changes: 1 addition & 1 deletion packages/config/src/mainnet/satellite.config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type {Either} from '../utils/ts.utils';
import type {ENCODING_TYPE} from '../core/encoding';
import type {Either} from '../utils/ts.utils';
import type {JunoConfigMode} from './juno.env';
import type {StorageConfig} from './storage.config';

Expand Down

0 comments on commit 0517a86

Please sign in to comment.