-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat: add command for generating app feature component
- Loading branch information
Tsemach Lifshitz
committed
Feb 8, 2024
1 parent
28df2a3
commit 395dc84
Showing
5 changed files
with
43 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
import { z } from 'zod'; | ||
|
||
import { tunnelAuthTokenSchema } from 'services/schemas/push-service-schemas'; | ||
import { tunnelAuthTokenSchema, tunnelDomainSchema } from 'services/schemas/push-service-schemas'; | ||
|
||
export type TunnelAuthToken = z.infer<typeof tunnelAuthTokenSchema>; | ||
|
||
export type TunnelDomain = z.infer<typeof tunnelDomainSchema>; |