This file contains hidden or 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
| declare module '@easypost/api' { | |
| type DeepPartial<T> = { | |
| [P in keyof T]?: DeepPartial<T[P]>; | |
| }; | |
| export interface IFieldError { | |
| /** | |
| * Field of the request that the error describes | |
| */ | |
| field: string; |
This file contains hidden or 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
| [ | |
| { | |
| "constant": false, | |
| "inputs": [ | |
| { | |
| "name": "_recipient", | |
| "type": "address[]" | |
| }, | |
| { | |
| "name": "amount", |
This file contains hidden or 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
| import Expo from "expo"; | |
| import { Auth } from "aws-amplify"; | |
| ... | |
| class SignInScreen extends React.Component { | |
| ... | |
| loginWithFacebook = async () => { |
This file contains hidden or 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
| /*********************************************************************** | |
| * Program: | |
| * Lesson 08, Tic-Tac-Toe | |
| * Summary: | |
| * This program reads, displays, and writes a Tic-Tac-Toe board | |
| ************************************************************************/ | |
| #include <iostream> | |
| #include <fstream> | |
| #include <cassert> |