Skip to content

Commit

Permalink
Fix svelte type
Browse files Browse the repository at this point in the history
  • Loading branch information
guillemcordoba committed Jan 27, 2023
1 parent 6c6eb38 commit 81a3152
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import '@material/mwc-circular-progress';
import type { EntryHash, Record, AgentPubKey, ActionHash, AppAgentClient, NewEntryAction } from '@holochain/client';
import { clientContext } from '../../contexts';
import {{pascal_case referenceable.name}}Detail from './{{pascal_case referenceable.name}}Detail.svelte';
import { {{pascal_case coordinator_zome_manifest.name}}Signal } from './types';
import type { {{pascal_case coordinator_zome_manifest.name}}Signal } from './types';
{{#if (eq collection_type.type "ByAuthor")}}
export let author: AgentPubKey;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import '@material/mwc-circular-progress';
import type { Record, ActionHash, EntryHash, AgentPubKey, AppAgentClient, NewEntryAction } from '@holochain/client';
import { clientContext } from '../../contexts';
import {{pascal_case from_referenceable.name}}Detail from './{{pascal_case from_referenceable.name}}Detail.svelte';
import { {{pascal_case coordinator_zome_manifest.name}}Signal } from './types';
import type { {{pascal_case coordinator_zome_manifest.name}}Signal } from './types';
export let {{camel_case to_referenceable.singular_arg}}: {{to_referenceable.hash_type}};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import '@material/mwc-circular-progress';
import type { Record, EntryHash, ActionHash, AgentPubKey, AppAgentClient, NewEntryAction } from '@holochain/client';
import { clientContext } from '../../contexts';
import {{pascal_case to_referenceable.name}}Detail from './{{pascal_case to_referenceable.name}}Detail.svelte';
import { {{pascal_case coordinator_zome_manifest.name}}Signal } from './types';
import type { {{pascal_case coordinator_zome_manifest.name}}Signal } from './types';
export let {{camel_case from_referenceable.singular_arg}}: {{from_referenceable.hash_type}};
Expand Down

0 comments on commit 81a3152

Please sign in to comment.