-
-
Notifications
You must be signed in to change notification settings - Fork 249
Improve sample-controllers to be more useful examples #6168
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 7 commits
deac397
3d76ba7
0962c3e
e1dea00
c0b6e96
bb71b2d
5e343da
c4d0fc4
d73a7ba
7d53513
7e967d2
31fc78b
c7c20c1
b3f9796
44e100f
9d0799e
525c4d8
0240763
78d29c5
1ac6bcc
8f9a6b9
0abf441
07e80e8
e0e52b3
7a97b62
3754d4c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
mcmire marked this conversation as resolved.
Show resolved
Hide resolved
|
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,33 @@ | ||
export type { | ||
SampleGasPricesServiceActions, | ||
SampleGasPricesServiceEvents, | ||
SampleGasPricesServiceFetchGasPricesAction, | ||
SampleGasPricesServiceMessenger, | ||
} from './sample-gas-prices-service/sample-gas-prices-service'; | ||
export { SampleGasPricesService } from './sample-gas-prices-service/sample-gas-prices-service'; | ||
export type { | ||
SampleGasPricesControllerActions, | ||
SampleGasPricesControllerEvents, | ||
SampleGasPricesControllerGetStateAction, | ||
SampleGasPricesControllerMessenger, | ||
SampleGasPricesControllerState, | ||
SampleGasPricesControllerStateChangeEvent, | ||
SampleGasPricesControllerUpdateGasPricesAction, | ||
} from './sample-gas-prices-controller'; | ||
export { | ||
getDefaultSampleGasPricesControllerState, | ||
SampleGasPricesController, | ||
getDefaultSampleGasPricesControllerState, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This export was already present, but it was not ordered alphabetically. |
||
} from './sample-gas-prices-controller'; | ||
export type { | ||
SamplePetnamesControllerActions, | ||
SamplePetnamesControllerAssignPetnameAction, | ||
SamplePetnamesControllerEvents, | ||
SamplePetnamesControllerGetStateAction, | ||
SamplePetnamesControllerMessenger, | ||
SamplePetnamesControllerState, | ||
SamplePetnamesControllerStateChangeEvent, | ||
} from './sample-petnames-controller'; | ||
export { SamplePetnamesController } from './sample-petnames-controller'; | ||
export { | ||
SampleGasPricesService, | ||
type SampleAbstractGasPricesService, | ||
mcmire marked this conversation as resolved.
Show resolved
Hide resolved
|
||
} from './sample-gas-prices-service'; | ||
SamplePetnamesController, | ||
getDefaultPetnamesControllerState, | ||
} from './sample-petnames-controller'; |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This file was added originally before |
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.