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
| library ieee; | |
| use ieee.std_logic_1164.all; | |
| use ieee.numeric_std.all; | |
| use ieee.std_logic_unsigned.all; | |
| -- interface | |
| entity my_entity is | |
| generic( | |
| ); | |
| port( |
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
| using Microsoft.AspNetCore.Mvc; | |
| using Microsoft.Azure.Storage; | |
| using Microsoft.Azure.Storage.Queue; | |
| using Microsoft.Azure.WebJobs; | |
| using Microsoft.Azure.WebJobs.Extensions.Http; | |
| using System; | |
| using System.Collections.Generic; | |
| using System.Threading.Tasks; | |
| namespace Admin.Storage.Queue.Functions |
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 * as React from "react"; | |
| import { Dispatch } from "redux"; | |
| import { connect, MapDispatchToPropsFunction, MapStateToProps } from "react-redux"; | |
| import { MyApplicationState, SomeSubStateType } from "./MyApplication"; | |
| import { Action1, createAction1Action } from "./Action1"; | |
| import { Action2, createAction2Action } from "./Action2"; | |
| import { Action3, createAction3Action } from "./Action3"; | |
| [import { Event1, Event2, Event3 } from "./Events";] |